home *** CD-ROM | disk | FTP | other *** search
- #include "window.h"
- #define NORM CREATE_VIDEO_ATTRIBUTE(black,white)
-
- WPOINTER w;
- int i;
-
- main()
- {
- WindowInitializeSystem();
- WindowSaveInitial(0);
- w = WindowInitialize(BORDER,1,1,20,10,NORM,NORM,SINGLEBOX);
- WindowOpen(w);
- WindowDisplay(w,1,NOEFFECT);
- GET_KEY();
-
- /* Specify row 0 to write on */
- WindowWriteCenterString(w,"This is a title",0);
-
- /* Now write title on bottom by using the height structure member */
-
- WindowWriteCenterString(w,"This is a title",w->height + 1);
- }